home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Burning & Media / GB-PVR 1.2.13 / GBPVR10213.msi / Cabs.w1.cab / popup.js668 < prev    next >
Text File  |  2007-12-08  |  3KB  |  84 lines

  1. var win = null;
  2.  
  3. function EditPop(mypage, myname) {
  4.     var winl = (screen.width - 500) / 2;
  5.     var wint = (screen.height - 625) / 2;
  6.     var winprops = 'height=625,width=500,top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no';
  7.     //if win exists, move the window
  8.     if (win && !win.closed) win.close();
  9.  
  10.     win = window.open(mypage, myname, winprops);
  11.     if (parseInt(navigator.appVersion) >= 4) { 
  12.         win.window.focus();
  13.         if (!win.opener)
  14.             win.opener = self;
  15.     }
  16. }
  17.  
  18. //Credits pop-up window used in both the table and CSS based views of EWA
  19. function EditPop2(mypage2, myname2) {
  20.     var win2 = null;
  21.     var winl = (screen.width - 1150) / 2;
  22.     var wint = (screen.height - 475) / 2;
  23.     var winprops = 'height=475,width=1150,top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no';
  24.     //if win exists, move the window
  25.     if (win2 && !win2.closed) win2.close();
  26.  
  27.     win2 = window.open(mypage2, myname2, winprops);
  28.     if (parseInt(navigator.appVersion) >= 4) { 
  29.         win2.window.focus();
  30.         if (!win2.opener)
  31.             win2.opener = self;
  32.     }
  33. }
  34.  
  35. //Manual Record pop-up window used in both the table and CSS based views of EWA
  36. function EditPop3(mypage3, myname3) {
  37.     var win3=null;
  38.     var winl = (screen.width - 500) / 2;
  39.     var wint = (screen.height - 550) / 2;
  40.     var winprops = 'height=550,width=500,top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no';
  41.     //if win exists, move the window
  42.     if (win3 && !win3.closed) win.close();
  43.  
  44.     win3 = window.open(mypage3, myname3, winprops);
  45.     if (parseInt(navigator.appVersion) >= 4) { 
  46.         win3.window.focus();
  47.         if (!win3.opener)
  48.             win3.opener = self;
  49.     }
  50. }
  51.  
  52. //Color coding pop-up window used in the table based view of EWA
  53. function EditPop4(mypage4, myname4) {
  54.     var winl = (screen.width - 400) / 2;
  55.     var wint = (screen.height - 400) / 2;
  56.     var winprops = 'height=400,width=400,top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no';
  57.     //if win exists, move the window
  58.     if (win && !win.closed) win.close();
  59.  
  60.     win = window.open(mypage4, myname4, winprops);
  61.     if (parseInt(navigator.appVersion) >= 4) { 
  62.         win.window.focus();
  63.         if (!win.opener)
  64.             win.opener = self;
  65.     }
  66. }
  67.  
  68. //Details pop-up window - used in both table and CSS views of EWA
  69. function EditPop5(mypage5, myname5) {
  70.     var win2 = null;
  71.     var winl = (screen.width - 560) / 2;
  72.     var wint = (screen.height - 785) / 2;
  73.     var winprops = 'height=650,width=560,top='+wint+',left='+winl+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no';
  74.     //if win exists, move the window
  75.     if (win2 && !win2.closed) win2.close();
  76.  
  77.     win2 = window.open(mypage5, myname5, winprops);
  78.     if (parseInt(navigator.appVersion) >= 4) { 
  79.         win2.window.focus();
  80.         if (!win2.opener)
  81.             win2.opener = self;
  82.     }
  83. }
  84.